home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Embed / SMAKEFILE < prev    next >
Text File  |  1999-05-01  |  466b  |  36 lines

  1.  
  2. all: test
  3.  
  4.  
  5. PSRC=PythonSrc:
  6.  
  7.  
  8. CLIBS = PythonSrc:Amiga/amigapythonamitcp.lib LIB:scm881nb.lib LIB:scnb.lib
  9.  
  10.  
  11. LINKOPTS = SC BATCH NOICONS STRIPDEBUG
  12.  
  13. LIBS = $(PSRC)Modules/Modules.lib $(PSRC)Parser/Parser.lib $(PSRC)Python/Python.lib $(PSRC)Objects/Objects.lib $(CLIBS)
  14.  
  15.  
  16. OBJECTS=test.o
  17.  
  18. test: test.o
  19.     SLINK WITH <<
  20. TO test
  21. FROM lib:c.o
  22. test.o
  23. $(PSRC)Modules/getbuildinfo.o
  24. LIB $(LIBS)
  25. $(LINKOPTS)
  26. <<
  27.  
  28.  
  29. test.o: test.c
  30.     SC NOLINK test.c
  31.  
  32.  
  33.  
  34. clean:
  35.     -delete test.o test
  36.